home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
PROGRAMM
/
TUTORIAL
/
1307B.ZIP
/
WRITESM.MOD
< prev
Wrap
Text File
|
1989-01-18
|
604b
|
33 lines
MODULE WriteSm;
FROM InOut IMPORT WriteLn, WriteString;
BEGIN
WriteString("This line will be displayed on the monitor.");
WriteLn;
WriteString('This line will be displayed too.');
WriteLn;
WriteString("This will all be ");
WriteString('on one line.');
WriteLn;
WriteString('She said, "I ');
WriteString("don't ");
WriteString('like dogs."');
WriteLn;
END WriteSm.
(* Result of execution
This line will be displayed on the monitor.
This line will be displayed too.
This will all be on one line.
She said, "I don't like dogs."
*)